home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 3.0 KB | 225 lines | [TEXT/CWIE] |
- // DModalCheckboxesData.cp -- data container class for Everything
-
- #include "DModalCheckboxesData.h"
-
- #include <LFileStream.h>
-
-
- //----------
- DModalCheckboxesData::DModalCheckboxesData ()
- {
- mStandard4 = false;
- mXx2 = false;
- mLR5 = false;
- mLR6 = false;
- mLR7 = false;
- mLR8 = false;
- mCheckbox3 = false;
- mCheckbox4 = false;
- mNext3 = false;
- mNext4 = false;
- }
-
- //----------
- DModalCheckboxesData::~DModalCheckboxesData ()
- {
- }
-
- //----------
- void DModalCheckboxesData::CopyFrom (
- DModalCheckboxesData* inOther)
- {
- mStandard4 = inOther->mStandard4;
- mXx2 = inOther->mXx2;
- mLR5 = inOther->mLR5;
- mLR6 = inOther->mLR6;
- mLR7 = inOther->mLR7;
- mLR8 = inOther->mLR8;
- mCheckbox3 = inOther->mCheckbox3;
- mCheckbox4 = inOther->mCheckbox4;
- mNext3 = inOther->mNext3;
- mNext4 = inOther->mNext4;
- }
-
- //----------
- void DModalCheckboxesData::ReadFromFile (
- LFileStream* inFile)
- {
- }
-
- //----------
- void DModalCheckboxesData::WriteToFile (
- LFileStream* inFile)
- {
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetStandard4 () const
- {
-
- return mStandard4;
- }
-
- //----------
- void DModalCheckboxesData::SetStandard4 (
- Boolean inValue)
- {
- mStandard4 = inValue;
-
- SignalDataChanged (idStandard4);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetXx2 () const
- {
-
- return mXx2;
- }
-
- //----------
- void DModalCheckboxesData::SetXx2 (
- Boolean inValue)
- {
- mXx2 = inValue;
-
- SignalDataChanged (idXx2);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetLR5 () const
- {
-
- return mLR5;
- }
-
- //----------
- void DModalCheckboxesData::SetLR5 (
- Boolean inValue)
- {
- mLR5 = inValue;
-
- SignalDataChanged (idLR5);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetLR6 () const
- {
-
- return mLR6;
- }
-
- //----------
- void DModalCheckboxesData::SetLR6 (
- Boolean inValue)
- {
- mLR6 = inValue;
-
- SignalDataChanged (idLR6);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetLR7 () const
- {
-
- return mLR7;
- }
-
- //----------
- void DModalCheckboxesData::SetLR7 (
- Boolean inValue)
- {
- mLR7 = inValue;
-
- SignalDataChanged (idLR7);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetLR8 () const
- {
-
- return mLR8;
- }
-
- //----------
- void DModalCheckboxesData::SetLR8 (
- Boolean inValue)
- {
- mLR8 = inValue;
-
- SignalDataChanged (idLR8);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetCheckbox3 () const
- {
-
- return mCheckbox3;
- }
-
- //----------
- void DModalCheckboxesData::SetCheckbox3 (
- Boolean inValue)
- {
- mCheckbox3 = inValue;
-
- SignalDataChanged (idCheckbox3);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetCheckbox4 () const
- {
-
- return mCheckbox4;
- }
-
- //----------
- void DModalCheckboxesData::SetCheckbox4 (
- Boolean inValue)
- {
- mCheckbox4 = inValue;
-
- SignalDataChanged (idCheckbox4);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetNext3 () const
- {
-
- return mNext3;
- }
-
- //----------
- void DModalCheckboxesData::SetNext3 (
- Boolean inValue)
- {
- mNext3 = inValue;
-
- SignalDataChanged (idNext3);
- }
-
-
- //----------
- Boolean DModalCheckboxesData::GetNext4 () const
- {
-
- return mNext4;
- }
-
- //----------
- void DModalCheckboxesData::SetNext4 (
- Boolean inValue)
- {
- mNext4 = inValue;
-
- SignalDataChanged (idNext4);
- }
-